home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Misc / FLM / otherfiles / english / ARexx / look.rexx < prev    next >
OS/2 REXX Batch file  |  2000-01-01  |  1KB  |  29 lines

  1. /* This script send a word to FLM:
  2.    As a result FLM opens the FLM ARexx Window */
  3.  
  4. /* Here indicate, please, the FLM path and program name */
  5. initiation=run "dh0:FLM/FLM"
  6.  
  7. Options RESULTS /* To receive a return result too */
  8.  
  9. IF ~show('P','FLM') THEN DO
  10.  /* if FLM is not yet running */
  11.  ADDRESS COMMAND initiation
  12.  /* Wait until FLM is started... */
  13.  ADDRESS COMMAND "SYS:RexxC/WaitForPort FLM"
  14. END
  15.  
  16.  
  17. RESULT='go'
  18. /* Here the word "go" is written in variable RESULT. This line must be
  19.    changed to be able for example to send the word under the cursor to FLM. 
  20.    When e.g. the ARexx command name in your editor/word processor is
  21.    "GetWord", here you should have "Address <adr> GetWord". For <adr> you
  22.    must indicate the ARexx address of program that you can find in your
  23.    program's manual.
  24.    Normally, it's also possible to drop 'Address' + 'Program address port'.
  25.    Then e.g. you should write only "GetWort".
  26. */
  27.  
  28. Address FLM LOOKWORD RESULT /* Send word, which is in Variable RESULT, to FLM*/
  29.